home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / smfdoor / frmback.frm (.txt) < prev    next >
Visual Basic Form  |  1999-08-13  |  1KB  |  44 lines

  1. VERSION 5.00
  2. Begin VB.Form frmBack 
  3.    Appearance      =   0  'Flat
  4.    BackColor       =   &H80000007&
  5.    BorderStyle     =   1  'Fixed Single
  6.    Caption         =   "Back"
  7.    ClientHeight    =   1665
  8.    ClientLeft      =   4200
  9.    ClientTop       =   2400
  10.    ClientWidth     =   2160
  11.    Icon            =   "frmBack.frx":0000
  12.    LinkTopic       =   "Form1"
  13.    MaxButton       =   0   'False
  14.    MinButton       =   0   'False
  15.    ScaleHeight     =   1665
  16.    ScaleWidth      =   2160
  17.    Begin VB.CommandButton cmdDone 
  18.       Caption         =   "Done"
  19.       Height          =   375
  20.       Left            =   240
  21.       TabIndex        =   1
  22.       Top             =   1080
  23.       Width           =   1575
  24.    End
  25.    Begin VB.Label Label1 
  26.       BackColor       =   &H80000007&
  27.       Caption         =   "    This command takes you to the previous screen your were at, if there is one"
  28.       ForeColor       =   &H000000FF&
  29.       Height          =   855
  30.       Left            =   240
  31.       TabIndex        =   0
  32.       Top             =   120
  33.       Width           =   1815
  34.    End
  35. Attribute VB_Name = "frmBack"
  36. Attribute VB_GlobalNameSpace = False
  37. Attribute VB_Creatable = False
  38. Attribute VB_PredeclaredId = True
  39. Attribute VB_Exposed = False
  40. Private Sub cmdDone_Click()
  41.     frmBack.Hide
  42.     frmGo.Show
  43. End Sub
  44.